home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MATH
/
MRCRY209
/
DERIV.EKA
< prev
next >
Wrap
Text File
|
1992-11-04
|
270b
|
12 lines
; Demo of symbolic derivatives.
; x is deliberately left undefined, so Mercury will not be able to simplify
; to a real value.
f(x) := EXP(x SIN(x))
a = deriv(f(x),x)
; numerical derivatives
b = deriv(f(y),y)
c = (f(y + eps) - f(y)) / eps
eps = 1e-10
y = 1